Sha256: 57a8d9eaddcd7ad89b30849ecd49c5c3bdbbe8db57168e0c433a7be6b17b5f1f

Contents?: true

Size: 390 Bytes

Versions: 5

Compression:

Stored size: 390 Bytes

Contents

require "spec_helper"
require "license_acceptance/product"

RSpec.describe LicenseAcceptance::Product do
  let(:instance) { LicenseAcceptance::Product.new("name", "Pretty Name", "filename") }

  it "can lookup the product attributes" do
    expect(instance.name).to eq("name")
    expect(instance.pretty_name).to eq("Pretty Name")
    expect(instance.filename).to eq("filename")
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
license-acceptance-0.2.13 spec/license_acceptance/product_spec.rb
license-acceptance-0.2.10 spec/license_acceptance/product_spec.rb
license-acceptance-0.2.8 spec/license_acceptance/product_spec.rb
license-acceptance-0.2.6 spec/license_acceptance/product_spec.rb
license-acceptance-0.2.1 spec/license_acceptance/product_spec.rb