Clean up specs: test only one thing, and refrain from using should in titles (better spec-doc).

This commit is contained in:
nathanvda 2012-03-12 23:53:52 +01:00
parent dece4624fb
commit d76104f083
1 changed files with 13 additions and 11 deletions

View File

@ -19,12 +19,12 @@ describe Cocoon do
end
context "without a block" do
it "should accept a name" do
it "accepts a name" do
result = @tester.link_to_add_association('add something', @form_obj, :comments)
result.to_s.should == '<a href="#" class="add_fields" data-association="comment" data-associations="comments" data-template="form&lt;tag&gt;">add something</a>'
end
it "should accept html options and pass them to link_to" do
it "accepts html options and pass them to link_to" do
result = @tester.link_to_add_association('add something', @form_obj, :comments, {:class => 'something silly'})
result.to_s.should == '<a href="#" class="something silly add_fields" data-association="comment" data-associations="comments" data-template="form&lt;tag&gt;">add something</a>'
end
@ -38,7 +38,7 @@ describe Cocoon do
result.to_s.should == '<a href="#" class="add_fields" data-association="comment" data-associations="comments" data-template="form&lt;tag&gt;">some long name</a>'
end
it "should accept html options and pass them to link_to" do
it "accepts html options and pass them to link_to" do
result = @tester.link_to_add_association(@form_obj, :comments, {:class => 'floppy disk'}) do
"some long name"
end
@ -48,7 +48,7 @@ describe Cocoon do
end
context "with an irregular plural" do
it "should use the correct plural" do
it "uses the correct plural" do
result = @tester.link_to_add_association('add something', @form_obj, :people)
result.to_s.should == '<a href="#" class="add_fields" data-association="person" data-associations="people" data-template="form&lt;tag&gt;">add something</a>'
end
@ -59,7 +59,7 @@ describe Cocoon do
end
context "with extra render-options for rendering the child relation" do
it "should use the correct plural" do
it "uses the correct plural" do
@tester.should_receive(:render_association).with(:people, @form_obj, anything, {:wrapper => 'inline'}, nil)
result = @tester.link_to_add_association('add something', @form_obj, :people, :render_options => {:wrapper => 'inline'})
result.to_s.should == '<a href="#" class="add_fields" data-association="person" data-associations="people" data-template="form&lt;tag&gt;">add something</a>'
@ -106,12 +106,12 @@ describe Cocoon do
end
context "without a block" do
it "should accept a name" do
it "accepts a name" do
result = @tester.link_to_remove_association('remove something', @form_obj)
result.to_s.should == "<input id=\"Post__destroy\" name=\"Post[_destroy]\" type=\"hidden\" /><a href=\"#\" class=\"remove_fields dynamic\">remove something</a>"
end
it "should accept html options and pass them to link_to" do
it "accepts html options and pass them to link_to" do
result = @tester.link_to_remove_association('remove something', @form_obj, {:class => 'add_some_class', :'data-something' => 'bla'})
result.to_s.should == "<input id=\"Post__destroy\" name=\"Post[_destroy]\" type=\"hidden\" /><a href=\"#\" class=\"add_some_class remove_fields dynamic\" data-something=\"bla\">remove something</a>"
end
@ -126,7 +126,7 @@ describe Cocoon do
result.to_s.should == "<input id=\"Post__destroy\" name=\"Post[_destroy]\" type=\"hidden\" /><a href=\"#\" class=\"remove_fields dynamic\">remove some long name</a>"
end
it "should accept html options and pass them to link_to" do
it "accepts html options and pass them to link_to" do
result = @tester.link_to_remove_association(@form_obj, {:class => 'add_some_class', :'data-something' => 'bla'}) do
"remove some long name"
end
@ -141,10 +141,12 @@ describe Cocoon do
end
end
context "should create proper partial" do
it "should create correct association" do
context "setup_partial" do
it "generates the default partial name if no partial given" do
result = @tester.setup_partial(nil, :admin_comments)
result.should == "admin_comment_fields"
end
it "uses the given partial name" do
result = @tester.setup_partial("comment_fields", :admin_comments)
result.should == "comment_fields"
end