Skip to content

Commit 297750b

Browse files
committedFeb 6, 2014
dom/attribute: cleanup code
1 parent 05c61a7 commit 297750b

File tree

2 files changed

+56
-12
lines changed

2 files changed

+56
-12
lines changed
 

‎opal/browser/dom/attribute.rb

+7-12
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,17 @@ module Browser; module DOM
44
class Attribute
55
include Native
66

7-
# Returns true if the attribute is an id.
8-
def id?
9-
`#@native.isId`
10-
end
11-
127
# @!attribute [r] name
138
# @return [String] the name of the attribute
14-
def name
15-
`#@native.name`
16-
end
9+
alias_native :name
1710

18-
# @!attribute [r] value
11+
# @!attribute value
1912
# @return [String] the value of the attribute
20-
def value
21-
`#@native.value`
22-
end
13+
alias_native :value
14+
alias_native :value=
15+
16+
# Returns true if the attribute is an id.
17+
alias_native :id?, :isId
2318
end
2419

2520
end; end

‎spec/dom/attribute_spec.rb

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
require 'spec_helper'
2+
3+
describe Browser::DOM::Attribute do
4+
html <<-HTML
5+
<div id="lol" class="hue" something="wat"></div>
6+
HTML
7+
8+
describe '#name' do
9+
it 'gets the right name' do
10+
attr = $document['lol'].attribute_nodes.find { |a| a.name == :id }
11+
12+
expect(attr.name).to eq(:id)
13+
end
14+
end
15+
16+
describe '#value' do
17+
it 'gets the right value' do
18+
attr = $document['lol'].attribute_nodes.find { |a| a.name == :id }
19+
20+
expect(attr.name).to eq(:id)
21+
expect(attr.value).to eq(:lol)
22+
end
23+
end
24+
25+
describe '#value=' do
26+
it 'sets the value' do
27+
attr = $document['lol'].attribute_nodes.find { |a| a.name == :id }
28+
29+
expect(attr.name).to eq(:id)
30+
expect(attr.value).to eq(:lol)
31+
attr.value = :omg
32+
expect(attr.value).to eq(:omg)
33+
end
34+
end
35+
36+
describe '#id?' do
37+
it 'is true for an id attribute' do
38+
attr = $document['lol'].attribute_nodes.find { |a| a.name == :id }
39+
40+
expect(attr.id?).to be_truthy
41+
end
42+
43+
it 'is false for any other attribute' do
44+
attr = $document['lol'].attribute_nodes.find { |a| a.name == :class }
45+
46+
expect(attr.id?).to be_falsy
47+
end
48+
end
49+
end

0 commit comments

Comments
 (0)
Please sign in to comment.