Sha256: eee72873d2a8adc395f6db4d8a78f3211d470002c01446cad5ea33d15efd6038

Contents?: true

Size: 613 Bytes

Versions: 2

Compression:

Stored size: 613 Bytes

Contents

require 'spec_helper'

describe Maestro::Plugin::RakeTasks::Pom do

  let(:pom) { File.expand_path("../../../../pom.xml", __FILE__) }
  let(:subject) { Maestro::Plugin::RakeTasks::Pom.new(pom) }

  its(:artifact_id) { should eq("maestro-test-plugin") }
  its(:version) { should eq("X.Y.Z") }
  its(:description) { should eq("a description") }
  its(:url) { should eq("http://acme.com") }

  it { subject[:artifactId].should eq("maestro-test-plugin") }
  it { subject[:version].should eq("X.Y.Z") }
  it { subject[:description].should eq("a description") }
  it { subject[:url].should eq("http://acme.com") }

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
maestro-plugin-rake-tasks-1.0.11 spec/maestro/plugin/rake_tasks/pom_spec.rb
maestro-plugin-rake-tasks-1.0.10 spec/maestro/plugin/rake_tasks/pom_spec.rb