Read more

CucumberFactory 1.11 lets you use FactoryGirl traits

Henning Koch
May 12, 2015Software engineer at makandra GmbH

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
Illustration web development

Do you need DevOps-experts?

Your development team has a full backlog? No time for infrastructure architecture? Our DevOps team is ready to support you!

  • We build reliable cloud solutions with Infrastructure as code
  • We are experts in security, Linux and databases
  • We support your dev team to perform
Read more Show archive.org snapshot

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 13:45)