Sha256: 7e0dad3914a55fa56090f727d5d4bfe23d5f6ef8be3f00b303925b1367902298

Contents?: true

Size: 1023 Bytes

Versions: 2

Compression:

Stored size: 1023 Bytes

Contents

Given /^I have an assembly pom\.xml$/ do
  maven = Maven.new "testdata/assembly_pom.xml"
  maven.ops[:artifact_type].should == "assembly"
end

Given /^that the assembly jar is built$/ do
  pending # express the regexp above with the code you wish you had
end

Then /^I should return the name of the assembly jar$/ do
  pending # express the regexp above with the code you wish you had
end

#------------------------------------------------------

When /^I ask for the artifact name$/ do
  # @maven.ops[:artifact_name].should == "abc"
end

Then /^I should get the name of the artifact$/ do
  pending # express the regexp above with the code you wish you had
end

Given /^I have an "([^"]*)"$/ do |arg1|
  @maven.ops[:deploy_artifact_type].should == "assembly"
end

Given /^its artifact "([^"]*)" is built$/ do |arg1|
  pending # express the regexp above with the code you wish you had
end

Then /^I should return the name of the "([^"]*)"$/ do |arg1|
  pending # express the regexp above with the code you wish you had
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
beta_tools-0.0.5 features/step_definitions/maven_steps.rb
beta_tools-0.0.4 features/step_definitions/maven_steps.rb