-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add multiline raw parsing and fix components config
- Loading branch information
1 parent
a60ce31
commit f80b85c
Showing
6 changed files
with
158 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module Inky | ||
module Rails | ||
VERSION = '1.3.7.5'.freeze | ||
VERSION = '1.3.7.6'.freeze | ||
end | ||
NODE_VERSION, GEM_VERSION = Rails::VERSION.rpartition('.').map(&:freeze) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,108 @@ | ||
require 'spec_helper' | ||
|
||
RSpec.describe "Configuration" do | ||
around do |spec| | ||
Inky.configure do |config| | ||
old = config.template_engine | ||
spec.run | ||
config.template_engine = old | ||
RSpec.describe "Inky.configuration" do | ||
it "returns an Inky::Configuration object" do | ||
current_config = Inky.configuration | ||
expect(current_config).to be_an_instance_of Inky::Configuration | ||
end | ||
|
||
describe "=" do | ||
it "accepts an Inky::Configuration" do | ||
current_config = Inky.configuration | ||
config = Inky::Configuration.new | ||
Inky.configuration = config | ||
expect(Inky.configuration).to_not eq(current_config) | ||
expect(Inky.configuration).to eq(config) | ||
|
||
Inky.configuration = {} | ||
expect(Inky.configuration).to eq(config) | ||
|
||
Inky.configuration = current_config | ||
expect(Inky.configuration).to eq(current_config) | ||
end | ||
end | ||
|
||
it "default value is :erb" do | ||
Inky::Configuration.new.template_engine = :erb | ||
describe "&block" do | ||
it "returns the yields the current configuration" do | ||
current_config = Inky.configuration | ||
new_config = Inky::Configuration.new | ||
Inky.configuration = new_config | ||
|
||
Inky.configuration do |config| | ||
expect(config).to be_an_instance_of Inky::Configuration | ||
expect(config).to_not eq(current_config) | ||
expect(config).to eq(new_config) | ||
|
||
config.column_count = 24 | ||
expect(new_config.column_count).to eq(24) | ||
end | ||
|
||
Inky.configuration = current_config | ||
end | ||
end | ||
end | ||
|
||
RSpec.describe "Configuration" do | ||
describe "#template_engine" do | ||
it "default value is :erb" do | ||
expect(Inky::Configuration.new.template_engine).to eq(:erb) | ||
end | ||
end | ||
|
||
describe "#configuration=" do | ||
it "can set template_engine" do | ||
describe "#template_engine=" do | ||
it "sets/updates the template_engine" do | ||
config = Inky::Configuration.new | ||
config.template_engine = :haml | ||
expect(config.template_engine).to eq(:haml) | ||
end | ||
end | ||
|
||
describe "#column_count" do | ||
it "default value is :erb" do | ||
expect(Inky::Configuration.new.column_count).to eq(12) | ||
end | ||
end | ||
|
||
describe "#column_count=" do | ||
it "sets/updates the column_count" do | ||
config = Inky::Configuration.new | ||
config.column_count = 24 | ||
expect(config.column_count).to eq(24) | ||
end | ||
|
||
it "can set column_count" do | ||
it "accepts integers" do | ||
config = Inky::Configuration.new | ||
config.column_count = 4 | ||
expect(config.column_count).to eq(4) | ||
config.column_count = :haml | ||
expect(config.column_count).to eq(12) | ||
end | ||
end | ||
|
||
describe "#configuration=" do | ||
before do | ||
Inky.configure do |config| | ||
config.template_engine = :haml | ||
end | ||
describe "#components" do | ||
it "defaults to an empty hash" do | ||
config = Inky::Configuration.new | ||
expect(config.components).to eq({}) | ||
end | ||
end | ||
|
||
it "returns :haml as configured template_engine" do | ||
template_engine = Inky.configuration.template_engine | ||
describe "#components=" do | ||
it "can set overriden component tags" do | ||
config = Inky::Configuration.new | ||
config.components = { button: 'inky-button' } | ||
expect(config.components).to eq(button: 'inky-button') | ||
end | ||
|
||
expect(template_engine).to be_a(Symbol) | ||
expect(template_engine).to eq(:haml) | ||
it "will not set an invalid components override" do | ||
config = Inky::Configuration.new | ||
[ | ||
nil, | ||
1, | ||
"{}", | ||
false, | ||
true | ||
].each do |v| | ||
config.components = v | ||
expect(config.components).to eq({}) | ||
end | ||
end | ||
end | ||
end |