summaryrefslogtreecommitdiffstats
path: root/spec/loading_spec.rb
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2013-12-26 23:42:00 +0100
committerAdam Stankiewicz <sheerun@sher.pl>2013-12-26 23:42:00 +0100
commit20125ac3acc8624c294521b3771de3d38b2b7bce (patch)
tree92705840e27465058c9ea128b9e82cf65513d94a /spec/loading_spec.rb
parent9f19823a302ac4b147e5532153b1bed6e23138f3 (diff)
downloadvim-polyglot-20125ac3acc8624c294521b3771de3d38b2b7bce.tar.gz
vim-polyglot-20125ac3acc8624c294521b3771de3d38b2b7bce.zip
fix: For some reason stylus test hangs on travis
Diffstat (limited to 'spec/loading_spec.rb')
-rw-r--r--spec/loading_spec.rb12
1 files changed, 7 insertions, 5 deletions
diff --git a/spec/loading_spec.rb b/spec/loading_spec.rb
index bb5862bb..06234340 100644
--- a/spec/loading_spec.rb
+++ b/spec/loading_spec.rb
@@ -10,11 +10,13 @@ describe "My Vim plugin" do
extensions = extensions.split(/[\n,]/)
extensions.each do |ext|
- it "should parse #{ext} file" do
- write_file "#{ext}", ""
- vim.edit "#{ext}"
- vim.insert "sample"
- vim.write
+ unless ext.match(/stylus$/)
+ it "should parse #{ext} file" do
+ write_file "#{ext}", ""
+ vim.edit "#{ext}"
+ vim.insert "sample"
+ vim.write
+ end
end
end
end