Sha256: 28774686830bad72c20ba15ac7014c8fbc77466b8bb37c1cd645fc62984af1d3
Contents?: true
Size: 1.23 KB
Versions: 2
Compression:
Stored size: 1.23 KB
Contents
require File.join(File.dirname(__FILE__), 'test_helper') class Lightning::BoltTest < Test::Unit::TestCase context "Bolt" do before(:each) do @completion_map = {'path1'=>'/dir/path1','path2'=>'/dir/path2'} @bolt = Lightning::Bolt.new('blah') @bolt.completion_map.map = @completion_map end test "fetches correct completions" do assert_equal @bolt.completions, @completion_map.keys end test "resolves completion" do assert_equal @completion_map['path1'], @bolt.resolve_completion('path1') end test "resolves completion with test flag" do assert_equal @completion_map['path1'], @bolt.resolve_completion('-test path1') end test "creates completion_map only once" do assert_equal @bolt.completion_map.object_id, @bolt.completion_map.object_id end end test "Bolt's completion_map sets up alias map with options" do old_config = Lightning.config Lightning.stub!(:current_command, :return=>'blah') Lightning.config = {:aliases=>{'path1'=>'/dir1/path1'}, :commands=>[{'name'=>'blah'}], :paths=>{}} @bolt = Lightning::Bolt.new('blah') assert_equal({'path1'=>'/dir1/path1'}, @bolt.completion_map.alias_map) Lightning.config = old_config end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
cldwalker-lightning-0.2.0 | test/bolt_test.rb |
lightning-0.2.1 | test/bolt_test.rb |