Sha256: c4792e01a8de338d07582455a53ad634a97acfc11db660d98214c4680f0f61e6

Contents?: true

Size: 463 Bytes

Versions: 3

Compression:

Stored size: 463 Bytes

Contents

require "spec_helper"

describe Docks::Tags::Base do
  subject { Docks::Tags::Base.instance }

  it "has no synonyms by default" do
    expect(subject.synonyms).to eq []
  end

  it "is multiline by default" do
    expect(subject.multiline?).to be true
  end

  it "allows only one tag per block by default" do
    expect(subject.multiple_allowed?).to be false
  end

  it "can be included in parse results" do
    expect(subject.parseable?).to be true
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
docks_app-0.0.3 spec/lib/tags/base_tag_spec.rb
docks_app-0.0.2 spec/lib/tags/base_tag_spec.rb
docks_app-0.0.1 spec/lib/tags/base_tag_spec.rb