summaryrefslogtreecommitdiffstats
path: root/tests/Settings.ron
blob: ed3009ef3ab60fed1f940aa86f84b9c4fabd5736 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(
  debug: true,
  production: false,
  arr: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
  place: (
    initials: ('T', 'P'),
    name: "Torre di Pisa",
    longitude: 43.7224985,
    latitude: 10.3970522,
    favorite: false,
    reviews: 3866,
    rating: Some(4.5),
    telephone: None,
    creator: {
      "name": "John Smith",
      "username": "jsmith",
      "email": "jsmith@localhost"
    }
  ),
  FOO: "FOO should be overridden",
  bar: "I am bar"
)