If you have FactoryGirl traits Show archive.org snapshot like this:
factory :movie do
  title 'Sunshine'
  year 2007
  
  trait :vintage do
    year 1951
  end
  
  trait :moody do
    title 'Interstellar'
  end
end
You can now call them from Cucumber Factory Show archive.org snapshot like this:
Given there is a movie (vintage, moody)
Posted by Henning Koch to makandra dev (2015-05-12 11:45)