Sha256: 97628fb6d2dc142dbf10fc6c2ea17c88f4e8c368819aa9f4386a7e80450c6335
Contents?: true
Size: 349 Bytes
Versions: 29
Compression:
Stored size: 349 Bytes
Contents
require_relative 'helper' class TestApplication < Test::Unit::TestCase @@app = Reflex::Application.new def test_name() assert_equal '', @@app.name @@app.name = 'AppName' assert_equal 'AppName', @@app.name end def test_inspect() assert_match %r|#<Reflex::Application:0x\w{16}>|, @@app.inspect end end# TestApplication
Version data entries
29 entries across 29 versions & 1 rubygems