Sha256: 7e42aad70a53ff0bf138dcf3f0901f8ceb6b8f246b188b4c5ce3feaffac0a45a

Contents?: true

Size: 1.84 KB

Versions: 6

Compression:

Stored size: 1.84 KB

Contents

require "spec_helper"

describe Ruco::Form do
  let(:form){ Ruco::Form.new('Test', :columns => 30){|value| @result = value } }

  it "positions cursor in text field" do
    form.cursor.should == [0, 5]
  end

  describe :insert do
    it "adds label size and input size" do
      form.insert('abc')
      form.cursor.should == [0, 8]
    end

    it "does not return result on normal insert" do
      form.insert('abc')
      @result.should == nil
    end

    it "returns result on enter" do
      form.insert('abc')
      form.insert("d\n")
      @result.should == "abcd"
    end

    it "returns result on normal insert when auto_enter is given" do
      form.instance_eval{ @options[:auto_enter] = true }
      form.insert('a')
      @result.should == 'a'
    end
  end

  describe :move do
    it "moves in text-field" do
      form.insert('abc')
      form.move(:relative, 0, -1)
      form.cursor.should == [0,7]
    end

    it "cannot move out of left side" do
      form.move(:relative, 0, -3)
      form.cursor.should == [0,5]
    end

    it "cannot move out of right side" do
      form.move(:relative, 0, 4)
      form.cursor.should == [0,5]
      form.insert('abc')
      form.move(:relative, 0, 4)
      form.cursor.should == [0,8]
    end
  end

  describe :delete do
    it "removes characters forward" do
      form.insert('abc')
      form.move(:relative, 0, -2)
      form.delete(1)
      form.view.should == 'Test ac' 
    end

    it "removes characters backward" do
      form.insert('abc')
      form.move(:relative, 0, -1)
      form.delete(-1)
      form.view.should == 'Test ac'
    end

    it "moves the cursor backward" do
      form.insert('abc')
      form.move(:relative, 0, -1)
      form.delete(-1)
      form.cursor.should == [0,6]
    end
  end

  describe :view do
    it "can be viewed" do
      form.view.should == "Test "
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruco-0.2.18 spec/ruco/form_spec.rb
ruco-0.2.17 spec/ruco/form_spec.rb
ruco-0.2.16 spec/ruco/form_spec.rb
ruco-0.2.15 spec/ruco/form_spec.rb
ruco-0.2.14 spec/ruco/form_spec.rb
ruco-0.2.13 spec/ruco/form_spec.rb