Sha256: 0b520f04803130a2f2428f677a61ceaecc520d7e32e1d9794f15370408dc4978
Contents?: true
Size: 652 Bytes
Versions: 17
Compression:
Stored size: 652 Bytes
Contents
require 'test_helper' class Juwelier module Commands class TestValidateGemspec < Test::Unit::TestCase build_command_context "build context" do setup do @command = Juwelier::Commands::ValidateGemspec.build_for(@juwelier) end should "assign gemspec_helper" do assert_same @gemspec_helper, @command.gemspec_helper end should "assign output" do assert_same @output, @command.output end should "return Juwelier::Commands::ValidateGemspec" do assert_kind_of Juwelier::Commands::ValidateGemspec, @command end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems