File tree 2 files changed +56
-12
lines changed
2 files changed +56
-12
lines changed Original file line number Diff line number Diff line change @@ -4,22 +4,17 @@ module Browser; module DOM
4
4
class Attribute
5
5
include Native
6
6
7
- # Returns true if the attribute is an id.
8
- def id?
9
- `#@native .isId`
10
- end
11
-
12
7
# @!attribute [r] name
13
8
# @return [String] the name of the attribute
14
- def name
15
- `#@native .name`
16
- end
9
+ alias_native :name
17
10
18
- # @!attribute [r] value
11
+ # @!attribute value
19
12
# @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
23
18
end
24
19
25
20
end ; end
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments