thoughtbot--factory_bot/spec/support
Joshua Clayton dc32fd69e8 Change syntax for ignoring attributes to use block syntax instead of
calling ignore on individual declarations.

Old syntax:

    factory :user do
      rockstar(true).ignore
      four { 2 + 2 }.ignore

      name { "John Doe#{" - Rockstar" if rockstar}" }
    end

New syntax:

    factory :user do
      ignore do
        rockstar true
        four     { 2 + 2 }
      end

      name { "John Doe#{" - Rockstar" if rockstar}" }
    end
2011-10-09 16:46:57 -04:00
..
macros Move DefineConstant code into macro 2011-08-19 17:21:54 -04:00
shared_examples Change syntax for ignoring attributes to use block syntax instead of 2011-10-09 16:46:57 -04:00