Sha256: 610e44ed9ae64df79c8eba08a1106e364e39414143c6497aad042993804c5905
Contents?: true
Size: 1.01 KB
Versions: 17
Compression:
Stored size: 1.01 KB
Contents
require 'spec_helper' describe "assert_equal", :shared => true do it "like assert_equal" do assert_equal 1, 1 lambda { assert_equal 1, 2 }.should raise_error(::Test::Unit::AssertionFailedError) end end describe "A model spec should be able to access 'test/unit' assertions", :type => :model do it_should_behave_like "assert_equal" end describe "A view spec should be able to access 'test/unit' assertions", :type => :view do it_should_behave_like "assert_equal" end describe "A helper spec should be able to access 'test/unit' assertions", :type => :helper do it_should_behave_like "assert_equal" end describe "A controller spec with integrated views should be able to access 'test/unit' assertions", :type => :controller do controller_name :controller_spec integrate_views it_should_behave_like "assert_equal" end describe "A controller spec should be able to access 'test/unit' assertions", :type => :controller do controller_name :controller_spec it_should_behave_like "assert_equal" end
Version data entries
17 entries across 17 versions & 6 rubygems