summaryrefslogtreecommitdiff
path: root/tests/io/vcard/meson.build
blob: 14fef1212a0bf573218ec5285cc4c35012b8fc14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
io_vcard_tests = [
  'minimal',

  'bday',
  'email',
]

test_deps = [
  gee,
  folks,
  libebook,
  libcontactscore_dep,
]

foreach test_name : io_vcard_tests
  test_sources = [
    contacts_io_sources,
    'test-vcard-'+test_name+'.vala',
  ]

  test_bin = executable(test_name,
    test_sources,
    dependencies: test_deps,
  )

  test(test_name, test_bin,
    suite: 'vcard',
  )
endforeach