File: test.rb

package info (click to toggle)
ruby-mini-exiftool 2.9.0-2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 688 kB
  • sloc: ruby: 2,616; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 170 bytes parent folder | download
1
2
3
4
5
6
7
8
9
require 'mini_exiftool'

title = 'Debian Logo'

photo = MiniExiftool.new 'debian/tests/openlogo-25.jpg'
photo.title = title
photo.save

abort unless photo.title == title