1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
require "helper"
require "neovim/ruby_provider/buffer_ext"
module Neovim
RSpec.describe Buffer do
let!(:nvim) do
Neovim.attach_child(Support.child_argv).tap do |nvim|
stub_const("::Vim", nvim)
end
end
after { nvim.shutdown }
describe ".current" do
it "returns the current buffer from the global Vim client" do
expect(Buffer.current).to eq(nvim.get_current_buf)
end
end
describe ".count" do
it "returns the current buffer count from the global Vim client" do
expect do
nvim.command("new")
end.to change { Buffer.count }.by(1)
end
end
describe ".[]" do
it "returns the buffer from the global Vim client at the given index" do
expect(Buffer[0]).to eq(nvim.get_current_buf)
nvim.command("new")
expect(Buffer[1]).to eq(nvim.get_current_buf)
end
end
end
end
|