summaryrefslogtreecommitdiff
path: root/test/fixers/test_rustfmt_fixer_callback.vader
blob: 98761c946d251114a55c181cd7db5562892581dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Before:
  call ale#assert#SetUpFixerTest('rust', 'rustfmt')

After:
  call ale#assert#TearDownFixerTest()

Execute(The rustfmt callback should return the correct default values):
  call ale#test#SetFilename('../test-files/rust/testfile.rs')

  AssertFixer {'command': ale#Escape('rustfmt')}

Execute(The rustfmt callback should include custom rustfmt options):
  let g:ale_rust_rustfmt_options = "--skip-children"
  call ale#test#SetFilename('../test-files/rust/testfile.rs')

  AssertFixer {'command': ale#Escape('rustfmt') . ' ' . g:ale_rust_rustfmt_options}