forked from thoughtbot/administrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring_spec.rb
58 lines (45 loc) · 1.4 KB
/
string_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
require "rails_helper"
require "administrate/field/string"
require "support/field_matchers"
describe Administrate::Field::String do
include FieldMatchers
describe "#to_partial_path" do
it "returns a partial based on the page being rendered" do
page = :show
field = Administrate::Field::String.new(:string, "hello", page)
path = field.to_partial_path
expect(path).to eq("/fields/string/#{page}")
end
end
it do
should_permit_param(
"foo",
on_model: Customer,
for_attribute: :foo,
)
end
describe "#truncate" do
it "renders an empty string for nil" do
string = Administrate::Field::String.new(:description, nil, :show)
expect(string.truncate).to eq("")
end
it "defaults to displaying up to 50 characters" do
short = Administrate::Field::String.new(:title, lorem(30), :show)
long = Administrate::Field::String.new(:description, lorem(60), :show)
expect(short.truncate).to eq(lorem(30))
expect(long.truncate).to eq(lorem(50))
end
context "with a `truncate` option" do
it "shortens to the given length" do
string = string_with_options(lorem(30), truncate: 20)
expect(string.truncate).to eq(lorem(20))
end
end
end
def string_with_options(string, options)
Administrate::Field::String.new(:string, string, :page, options)
end
def lorem(n)
"a" * n
end
end