File: test_custom_defaults.ambr

package info (click to toggle)
python-syrupy 4.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 4,368 kB
  • sloc: python: 5,978; makefile: 3
file content (23 lines) | stat: -rw-r--r-- 410 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# serializer version: 1
# name: test_asserting_multiple_times
  dict({
    'excluded': 'value',
    'my-field': str,
  })
# ---
# name: test_asserting_multiple_times.1
  dict({
    'excluded': 'value',
    'my-field': int,
  })
# ---
# name: test_asserting_multiple_times_chained
  dict({
    'my-field': str,
  })
# ---
# name: test_asserting_multiple_times_chained.1
  dict({
    'my-field': int,
  })
# ---