mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
Use 1.9 hash syntax
This commit is contained in:
parent
400c9f193f
commit
6c29b11477
53 changed files with 248 additions and 248 deletions
|
|
@ -2,7 +2,7 @@ require "spec_helper"
|
|||
|
||||
describe "declaring attributes on a Factory that are private methods on Object" do
|
||||
before do
|
||||
define_model("Website", :system => :boolean, :link => :string, :sleep => :integer)
|
||||
define_model("Website", system: :boolean, link: :string, sleep: :integer)
|
||||
|
||||
FactoryGirl.define do
|
||||
factory :website do
|
||||
|
|
@ -13,7 +13,7 @@ describe "declaring attributes on a Factory that are private methods on Object"
|
|||
end
|
||||
end
|
||||
|
||||
subject { FactoryGirl.build(:website, :sleep => -5) }
|
||||
subject { FactoryGirl.build(:website, sleep: -5) }
|
||||
|
||||
its(:system) { should == false }
|
||||
its(:link) { should == "http://example.com" }
|
||||
|
|
@ -22,7 +22,7 @@ end
|
|||
|
||||
describe "assigning overrides that are also private methods on object" do
|
||||
before do
|
||||
define_model("Website", :format => :string, :y => :integer, :more_format => :string, :some_funky_method => :string)
|
||||
define_model("Website", format: :string, y: :integer, more_format: :string, some_funky_method: :string)
|
||||
|
||||
Object.class_eval do
|
||||
private
|
||||
|
|
@ -41,7 +41,7 @@ describe "assigning overrides that are also private methods on object" do
|
|||
Object.send(:undef_method, :some_funky_method)
|
||||
end
|
||||
|
||||
subject { FactoryGirl.build(:website, :format => "Great", :y => 12345, :some_funky_method => "foobar!") }
|
||||
subject { FactoryGirl.build(:website, format: "Great", y: 12345, some_funky_method: "foobar!") }
|
||||
its(:format) { should == "Great" }
|
||||
its(:y) { should == 12345 }
|
||||
its(:more_format) { should == "format: Great" }
|
||||
|
|
@ -50,7 +50,7 @@ end
|
|||
|
||||
describe "accessing methods from the instance within a dynamic attribute that is also a private method on object" do
|
||||
before do
|
||||
define_model("Website", :more_format => :string) do
|
||||
define_model("Website", more_format: :string) do
|
||||
def format
|
||||
"This is an awesome format"
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue