class BaseTest::IntegrationTest
Public Instance Methods
test_should_have_an_integration_name()
click to toggle source
# File test/unit/integrations/base_test.rb, line 8 def test_should_have_an_integration_name assert_equal :base, StateMachine::Integrations::Base.integration_name end
test_should_not_be_available()
click to toggle source
# File test/unit/integrations/base_test.rb, line 12 def test_should_not_be_available assert !StateMachine::Integrations::Base.available? end
test_should_not_have_a_locale_path()
click to toggle source
# File test/unit/integrations/base_test.rb, line 20 def test_should_not_have_a_locale_path assert_nil StateMachine::Integrations::Base.locale_path end
test_should_not_match_any_classes()
click to toggle source
# File test/unit/integrations/base_test.rb, line 16 def test_should_not_match_any_classes assert !StateMachine::Integrations::Base.matches?(Class.new) end