Sha256: 1109aff7307e64fa674ba53386f2345e1c1b4698ec5e32ad70f2072b3527409a
Contents?: true
Size: 1.87 KB
Versions: 3
Compression:
Stored size: 1.87 KB
Contents
require 'spec_helper' describe Bundlegem do before :each do @mocked_home = "/tmp/bundlegem_mock_home" @template_root = "#{@mocked_home}/.bundlegem/templates" @dst_dir = "/tmp/bundle_gem_dst_dir" reset_test_env FileUtils.chdir(@dst_dir) end it 'has a version number' do expect(Bundlegem::VERSION).not_to be nil end it 'creates a config file if needed and lists properly' do create_user_defined_template list_output = Bundlegem.list expect(list_output).to eq " PREDEFINED:\n * newgem (default)\n c_extension_gem\n cli_gem\n service\n\n MISC:\n empty_template\n\n" expect(File.exists?("#{ENV['HOME']}/.bundlegem")).to be true end it "lists with good categories" do category = "ARDUINO" create_user_defined_template(category) list_output = Bundlegem.list expect(list_output.include?(category)).to be true end # This bulids the default gem template it "can generate the default built-in gem fine" do options = {"bin"=>false, "ext"=>false, :coc=> false} gem_name = "tmp_gem" capture_stdout { Bundlegem.gem(options, gem_name) } expect(File.exists?("#{@dst_dir}/#{gem_name}/README.md")).to be_truthy end it "can generate the c_ext gem fine" do options = {"bin"=>false, "ext"=>false, :coc=> false, "template" => "c_extension_gem"} gem_name = "tmp_gem" capture_stdout { Bundlegem.gem(options, gem_name) } expect(File.exists?("#{@dst_dir}/#{gem_name}/ext/tmp_gem/#{gem_name}.c")).to be_truthy end describe "install best templates" do before :each do setup_mock_web_template end after :each do remove_mock_web_template end it "can download best templates from the web" do capture_stdout { Bundlegem.install_best_templates } expect(File.exists?("#{ENV['HOME']}/.bundlegem/templates/arduino/README.md")).to be_truthy end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
bundlegem-0.0.10 | spec/bundlegem_spec.rb |
bundlegem-0.0.9 | spec/bundlegem_spec.rb |
bundlegem-0.0.8 | spec/bundlegem_spec.rb |