CucumberFactory 1.11 lets you use FactoryGirl traits

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)
Henning Koch