Sha256: 61d663aeebd5f2be94aa11dc481ea8be81c1ba0d7d7611b07c5b7eec98bc2be0
Contents?: true
Size: 317 Bytes
Versions: 7
Compression:
Stored size: 317 Bytes
Contents
require File.expand_path("test_helper", File.dirname(__FILE__)) class GemTest < Minitest::Test def test_rake_gem gem_file = "ruboto-#{Ruboto::VERSION}.gem" File.delete(gem_file) if File.exists?(gem_file) assert !File.exists?(gem_file) system 'rake gem' assert File.exists?(gem_file) end end
Version data entries
7 entries across 7 versions & 1 rubygems