spec/druid/elements/radio_button_spec.rb in druid-ts-1.2.2 vs spec/druid/elements/radio_button_spec.rb in druid-ts-1.2.3
- old
+ new
@@ -1,17 +1,8 @@
require 'spec_helper'
require 'druid/elements'
describe Druid::Elements::RadioButton do
- describe "when mapping how to find an element" do
- it "should map watir types to same" do
- [:class, :id, :index, :name, :xpath, :value].each do |t|
- identifier = Druid::Elements::RadioButton.identifier_for t => 'value'
- expect(identifier.keys.first).to eql t
- end
- end
- end
-
describe "interface" do
let(:element) { double("element") }
let(:driver) { double("driver") }
let(:radio) { Druid::Elements::RadioButton.new(element)}