Sha256: bae1ec2abcb855f4f06a2b1a1fb1006dfc2f2023806a1f9f873e863ed01c6db0
Contents?: true
Size: 548 Bytes
Versions: 3
Compression:
Stored size: 548 Bytes
Contents
require "test/unit" class OptionsTest < Test::Unit::TestCase # Called before every test method runs. Can be used # to set up fixture information. def setup require "#{File.join(File.dirname(__FILE__), "..", "lib", "clementine", "options")}" end # Called after every test method runs. Can be used to tear # down fixture information. def teardown # Do nothing end def test_ruby2clj assert_equal "output-dir", Clementine.ruby2clj("output_dir") assert_equal "output-to", Clementine.ruby2clj("output_to") end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
clementine-0.0.3 | test/options_test.rb |
clementine-0.0.2 | test/options_test.rb |
clementine-0.0.1 | test/options_test.rb |