Rename project: f00bar -> yambar

This commit is contained in:
Daniel Eklöf 2019-09-28 20:39:45 +02:00
parent 9b9344877f
commit 9dbbc480e4
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
23 changed files with 87 additions and 87 deletions

View file

@ -1,10 +1,10 @@
test('is-executable', f00bar, args: ['--version'])
test('is-executable', yambar, args: ['--version'])
pwd = meson.current_source_dir()
# Configuration validation tests
test('no-config', f00bar, args: ['-C', '-c', 'xyz'], should_fail: true)
test('config-isnt-file', f00bar, args: ['-C', '-c', '.'], should_fail: true)
test('config-no-bar', f00bar, args: ['-C', '-c', join_paths(pwd, 'no-bar.yml')],
test('no-config', yambar, args: ['-C', '-c', 'xyz'], should_fail: true)
test('config-isnt-file', yambar, args: ['-C', '-c', '.'], should_fail: true)
test('config-no-bar', yambar, args: ['-C', '-c', join_paths(pwd, 'no-bar.yml')],
should_fail: true)
test('full-conf-good', f00bar, args: ['-C', '-c', join_paths(pwd, 'full-conf-good.yml')])
test('full-conf-good', yambar, args: ['-C', '-c', join_paths(pwd, 'full-conf-good.yml')])