summaryrefslogtreecommitdiffstats
path: root/menu/tests/tests/Move/test
blob: 9f2d162ee685da8adf50821abbb131368b72c746 (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
30
31
32
33
34
TEST_PURPOSE="simple <Move> operation"

test_code() {
	# Generate applications.menu
	mkdir -p ${XDG_CONFIG_DIR}/menus
	./expand > ${XDG_CONFIG_DIR}/menus/applications.menu <<EOF
 <!DOCTYPE Menu PUBLIC "-//freedesktop//DTD Menu 1.0//EN"
  "http://www.freedesktop.org/standards/menu-spec/1.0/menu.dtd">

<Menu>
	<Name>KDE</Name>
	<!-- Search the default locations -->
	<DefaultAppDirs/>
	<Move>
		<Old>Foo</Old>
		<New>Bar</New>
		<Old>BoardGames</Old>
		<New>Apps</New>
		<Old>BoardGames</Old>
		<New>Games</New>
	</Move>

	<Menu>
		<Name>BoardGames</Name>
		<Include>
			<Category>BoardGame</Category>
		</Include>
	</Menu>
</Menu>
EOF

	# Install .desktop files
	installData ${XDG_DATA_DIR}/applications gataxx.desktop mahjongg.desktop freecell.desktop glines.desktop
}