Sha256: 1b2d9a5748ed7ae0b6aab37a5c4089a7e66653fb8505cf7bc13cc6f4206c7965
Contents?: true
Size: 580 Bytes
Versions: 202
Compression:
Stored size: 580 Bytes
Contents
require 'spec_helper' describe Listen::Adapters::Windows do if windows? && Listen::Adapters::Windows.usable? it "is usable on Windows" do described_class.should be_usable end it_should_behave_like 'a filesystem adapter' it_should_behave_like 'an adapter that call properly listener#on_change', :recursive => true, :adapter => :windows end if mac? it "isn't usable on Mac OS X" do described_class.should_not be_usable end end if linux? it "isn't usable on Linux" do described_class.should_not be_usable end end end
Version data entries
202 entries across 112 versions & 4 rubygems