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