From 2d4cb5c1ad513f93c69518b402af1117c7e7461f Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Sun, 31 Jan 2016 17:28:37 +0100 Subject: [PATCH] updated travis test switching color schemes --- .travis.yml | 2 ++ t/commands.vim | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 9980baa..54deccf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,8 @@ language: ruby before_install: - curl -f -L "https://raw.githubusercontent.com/vim-airline/vim-airline-themes/master/autoload/airline/themes/simple.vim" -o autoload/airline/themes/simple.vim + - curl -f -L "https://raw.githubusercontent.com/vim-airline/vim-airline-themes/master/autoload/airline/themes/molokai.vim" -o autoload/airline/themes/molokai.vim + - mkdir colors && curl -f -L 'https://raw.githubusercontent.com/tomasr/molokai/master/colors/molokai.vim' -o colors/molokai.vim rvm: - 1.9.3 script: rake ci diff --git a/t/commands.vim b/t/commands.vim index e9b6009..0f4bcb6 100644 --- a/t/commands.vim +++ b/t/commands.vim @@ -24,6 +24,8 @@ describe 'commands' Expect g:airline_theme == 'dark' execute 'AirlineTheme doesnotexist' Expect g:airline_theme == 'dark' + colors molokai + Expect g:airline_theme == 'molokai' end it 'should have a refresh command'