CucumberFactory 1.11 lets you use FactoryGirl traits

Posted . Visible to the public.

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
License
Source code in this card is licensed under the MIT License.
Posted by Henning Koch to makandra dev (2015-05-12 11:45)