Merge pull request #2631 from timlag1305/feat/ada-gnatpp

Add gnatpp fixer for Ada
This commit is contained in:
w0rp
2019-08-18 15:37:51 +01:00
committed by GitHub
8 changed files with 64 additions and 0 deletions

View File

View File

@@ -0,0 +1,28 @@
Before:
call ale#assert#SetUpFixerTest('ada', 'gnatpp')
After:
" Reset fixers, variables, etc.
"
" Vader's 'Restore' command will be called here.
call ale#assert#TearDownFixerTest()
Execute(The default command should be correct):
call ale#test#SetFilename('../ada_files/testfile.adb')
AssertFixer
\ {
\ 'command': ale#Escape(g:ale_ada_gnatpp_executable) .' %t',
\ 'read_temporary_file': 1,
\ }
Execute(The version check should be correct):
call ale#test#SetFilename('../ada_files/testfile.adb')
let g:ale_ada_gnatpp_options = '--no-alignment'
AssertFixer
\ {
\ 'command': ale#Escape(g:ale_ada_gnatpp_executable)
\ . ' --no-alignment %t',
\ 'read_temporary_file': 1,
\ }