Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal-browser
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 91bdcf9f030f
Choose a base ref
...
head repository: opal/opal-browser
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 92cc7123c61f
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Feb 4, 2014

  1. dom/element/attributes: fix #[]= aliases

    dlee authored and meh committed Feb 4, 2014
    Copy the full SHA
    4dda792 View commit details
  2. spec/dom/element: add #[] and #[]= specs

    dlee authored and meh committed Feb 4, 2014
    Copy the full SHA
    92cc712 View commit details
Showing with 44 additions and 2 deletions.
  1. +1 −1 opal/browser/dom/element/attributes.rb
  2. +1 −1 spec/dom/element/attributes_spec.rb
  3. +42 −0 spec/dom/element_spec.rb
2 changes: 1 addition & 1 deletion opal/browser/dom/element/attributes.rb
Original file line number Diff line number Diff line change
@@ -65,7 +65,7 @@ def merge!(hash)
self
end

alias set []
alias set []=
end

end; end; end
2 changes: 1 addition & 1 deletion spec/dom/element/attributes_spec.rb
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@
end
end

describe '#[]' do
describe '#[]=' do
it 'sets an attribute' do
$document[:lol].attributes[:a] = :foo

42 changes: 42 additions & 0 deletions spec/dom/element_spec.rb
Original file line number Diff line number Diff line change
@@ -114,4 +114,46 @@
expect(el.inspect).to match(/: div.omg!.lol.wut>/)
end
end

describe '#[]' do
html <<-HTML
<div id="lol" class="name" for="hue"></div>
HTML

it 'gets an attribute' do
expect($document[:lol][:id]).to eq(:lol)
end

it 'gets the class attribute' do
expect($document[:lol][:class]).to eq(:name)
end

it 'gets the for attribute' do
expect($document[:lol][:for]).to eq(:hue)
end
end

describe '#[]=' do
html <<-HTML
<div id="lol" class="name" for="hue"></div>
HTML

it 'sets an attribute' do
$document[:lol][:a] = :foo

expect($document[:lol][:a]).to eq(:foo)
end

it 'sets the class attribute' do
$document[:lol][:class] = :bar

expect($document[:lol][:class]).to eq(:bar)
end

it 'sets the for attribute' do
$document[:lol][:for] = :baz

expect($document[:lol][:for]).to eq(:baz)
end
end
end