PageRenderTime 64ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/vendor/gems/facets-2.4.5/test/core/symbol/test_plain.rb

https://bitbucket.org/mediashelf/fedora-migrator
Ruby | 14 lines | 9 code | 5 blank | 0 comment | 0 complexity | 87961e0a2825b59b258c7ffa12e98070 MD5 | raw file
Possible License(s): GPL-3.0, GPL-2.0, IPL-1.0, AGPL-1.0, LGPL-3.0
  1. require 'facets/symbol/plain'
  2. require 'test/unit'
  3. class TC_Symbol_Plain < Test::Unit::TestCase
  4. def test_plain?
  5. assert(:try.plain? )
  6. assert( ! :try=.plain? )
  7. assert( ! :try?.plain? )
  8. end
  9. end