Sha256: d53f8b633a291910bce221d0f744418dcd552d1d78492835986fc5d2277b65d9
Contents?: true
Size: 416 Bytes
Versions: 5
Compression:
Stored size: 416 Bytes
Contents
class NavBarTest def initialize end def create_test Test_equal( NavBar.started, false ) begin NavBar.create rescue # Nothing end sleep 2 Test_equal( NavBar.started, false ) NavBar.create :title => "", :left => {:action => :back} sleep 2 Test_equal( NavBar.started, true ) NavBar.remove sleep 2 Test_equal( NavBar.started, false ) end end
Version data entries
5 entries across 5 versions & 1 rubygems