Sha256: 91bad5ece285c9531efe1abf0e69808b65d393c9b095afd1ac17940201de38b7

Contents?: true

Size: 1.48 KB

Versions: 19

Compression:

Stored size: 1.48 KB

Contents

When /^I click Show Bundles in Tree$/ do
  Swt.sync_exec do
    Redcar::Textmate::ShowSnippetTree.new.run
  end
end

Then /^I should see a tree mirror titled "([^"]*)"$/ do |arg1|
  val = Redcar.app.focussed_window.treebook.trees.detect do |t|
    t.tree_mirror.title == arg1
  end
end

When /^I open bundle "([^"]*)" in the tree$/ do |arg1|
  val = Redcar.app.focussed_window.treebook.trees.detect do |t|
    t.tree_mirror.is_a?(Redcar::Textmate::TreeMirror) and t.tree_mirror.top.detect do |child|
      if child.text == arg1
        @top = child.children
        true
      end
    end
  end
  val.should be_true
end

Then /^I should see snippet group "([^"]*)" listed$/ do |arg1|
  val = @top.detect do |child|
    child.is_a?(Redcar::Textmate::SnippetGroup) and child.text == arg1
  end
  val.should be_true
end

Then /^I should see snippet "([^"]*)" listed$/ do |arg1|
  val = @top.detect do |child|
    child.is_a?(Redcar::Textmate::SnippetNode) and child.text.match(/^#{arg1}/)
  end
  val.should be_true
end

 When /^I add a bundle$/ do
  FileUtils.mkdir tmp_bundle_path_1
  FileUtils.cp_r(test_bundle, bundle_path)
 end

Then /^I should (see|not see) bundle "([^"]*)" in the tree$/ do |see,arg1|
  val = Redcar.app.focussed_window.treebook.trees.detect do |t|
    t.tree_mirror.top.detect do |child|
      Redcar::Textmate.all_bundles.detect do |bundle|
        bundle.name == arg1
      end
    end
  end
  case see
  when "see"
  val.should be_true
  when "not see"
    val.should be_nil
  end
end

Version data entries

19 entries across 19 versions & 2 rubygems

Version Path
redcar-0.13 plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.13.5dev plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.13.4dev plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.13.3dev plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.13.2dev plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.13.1dev plugins/textmate/features/step_definitions/tree_steps.rb
redcar-0.12.1 plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.13.0dev plugins/textmate/features/step_definitions/tree_steps.rb
redcar-0.12 plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.12.27dev plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.12.26dev plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.12.25dev plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.12.24dev plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.12.23dev plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.12.22dev plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.12.21dev plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.12.20dev plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.12.19dev plugins/textmate/features/step_definitions/tree_steps.rb
redcar-dev-0.12.18dev plugins/textmate/features/step_definitions/tree_steps.rb