Sha256: ba3d54d13a1b91ffa18ea8e241aabe6ebc87df6d59ffefa69cb8961e3f442347

Contents?: true

Size: 306 Bytes

Versions: 3

Compression:

Stored size: 306 Bytes

Contents

require 'spec_helper'

describe Gametel::Views::Text do
  let(:platform) { double('Gametel platform') }
  let(:locator) { {:id => 'abc'} }
  subject { Gametel::Views::Text.new(platform, locator) }

  it 'should know what its type is' do
    subject.view_class.should eq('android.widget.EditText')
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gametel-0.8 spec/lib/gametel/accessors/text_spec.rb
gametel-0.7 spec/lib/gametel/accessors/text_spec.rb
gametel-0.6 spec/lib/gametel/accessors/text_spec.rb