Sha256: 6ff03de7c2f697c9da41018c7a50a03df7beefb12da8e966235c55e19892478a
Contents?: true
Size: 1.95 KB
Versions: 2
Compression:
Stored size: 1.95 KB
Contents
#!/usr/bin/env rspec require 'spec_helper' require 'fileutils' require 'noms/command' describe NOMS::Command do before(:all) do # An application which echoes all arguments, not just argument arguments setup_fixture 'test' @url = %q(data:application/json,{"$doctype":"noms-v2","$script":["document.body = document.argv.join(' ')"],"$body":[]}) FileUtils.mkdir_p 'test/etc/noms' unless File.directory? 'test/etc/noms' File.open('test/etc/noms/bookmarks.json', 'w') { |fh| fh.puts({'echo1' => @url}.to_json) } end describe '.run' do context 'with noms-v2 documents' do it "should set argv[0]" do expect { NOMS::Command.run [@url, 'one', 'two', 'three'] }.to output("#{@url} one two three\n").to_stdout end it "should parse initial options" do expect { NOMS::Command.run ['--bookmarks=/dev/null', @url, 'one', 'two', 'three'] }.to output("#{@url} one two three\n").to_stdout end it "should leave post-arg options alone" do expect { NOMS::Command.run ['--bookmarks=/dev/null', @url, '--command-opt', 'one'] }.to output("#{@url} --command-opt one\n").to_stdout end it "should honor bookmarks" do expect { NOMS::Command.run ['--bookmarks=test/etc/noms/bookmarks.json', 'echo1', 'one', 'two', 'three'] }.to output("echo1 one two three\n").to_stdout end it "should honor /" do expect { NOMS::Command.run ['--bookmarks=test/etc/noms/bookmarks.json', 'echo1/special', 'one', 'two', 'three'] }.to output("echo1/special one two three\n").to_stdout end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
noms-command-2.1.1 | spec/09bookmarks_spec.rb |
noms-command-0.5.0 | spec/09bookmarks_spec.rb |