flux-platform 0.4.0

A local-first, AI-native developer automation platform: build, test, package, and deploy from a single .flux file, and make your repository legible to AI agents.
1
2
3
4
5
6
7
8
9
10
11
12
import unittest

from app import greeting


class GreetingTest(unittest.TestCase):
    def test_mentions_flux(self):
        self.assertIn("Flux", greeting())


if __name__ == "__main__":
    unittest.main()