Guest User

Untitled

a guest
Apr 26th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. require 'test/unit'
  2.  
  3. class TC_ExperimentValidator < Test::Unit::TestCase
  4.  
  5. def setup
  6. @exp = open File.join( ROOT, 'test', 'data', 'experiment.yml' ) do |file|
  7. ShaXpear.import( file )
  8. end
  9. end
  10.  
  11. def test_ident
  12. assert_not_nil( @exp )
  13. end
  14.  
  15. end
Add Comment
Please, Sign In to add comment